home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / src / scroll_p.h < prev    next >
C/C++ Source or Header  |  1993-10-06  |  1KB  |  21 lines

  1. #ifndef __SCROLL_P_H__
  2. #define __SCROLL_P_H__
  3.  
  4. extern _VOID_ scrolling_1 _P_((FRAME_PTR frame, int window_size,
  5.                                int unchanged_at_top, int unchanged_at_bottom,
  6.                                int *draw_cost, int *old_hash,
  7.                                int *new_hash, int free_at_end));
  8. extern int scrolling_max_lines_saved _P_((int start, int end, int *oldhash,
  9.                                           int *newhash, int *cost));
  10. extern int scroll_cost _P_((FRAME_PTR frame, int from, int to, int amount));
  11. extern _VOID_ do_line_insertion_deletion_costs _P_((FRAME_PTR frame,
  12.                                                     char *ins_line_string,
  13.                                                     char *multi_ins_string,
  14.                                                     char *del_line_string,
  15.                                                     char *multi_del_string,
  16.                                                     char *setup_string,
  17.                                                     char *cleanup_string,
  18.                                                     int coefficient));
  19.  
  20. #endif
  21.